/* Fenil Chandarana Fab Academy 2022 Webpage link: https://fabacademy.org/2022/labs/vigyanashram/students/fenil-chandarana/ */ #include #include #include #include #define OLED_RESET 4 Adafruit_SSD1306 display(OLED_RESET); const unsigned char myBitmap [] PROGMEM = { }; void setup() { // put your setup code here, to run once: display.begin(SSD1306_SWITCHCAPVCC, 0X3C); display.clearDisplay(); } void loop() { // put your main code here, to run repeatedly: display.drawBitmap(0, 0, myBitmap, 128, 64, WHITE); display.display(); }